home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
AESSHEL2.S
< prev
next >
Wrap
Text File
|
1993-03-10
|
1KB
|
46 lines
;*========================================================================
;*
;* AESFAST Public Domain GEM bindings.
;*
;* 04/05/89 - v1.2
;* Finally received confirmation for the proper definitions
;* of shel_get/shel_put. The (incorrect) definition of
;* shel_get() was removed from aesshel1.b and defined
;* properly here.
;*========================================================================
;*************************************************************************
;*
;* Shell library routines 2 of 2.
;* These two routines are mostly likely to be used by a desk accessory
;* functioning as a replacement for the control panel, so they are
;* isolated from the other shell functions.
;*************************************************************************
;-------------------------------------------------------------------------
; shel_get
; shel_put
;-------------------------------------------------------------------------
globl _shel_get
_shel_get:
move.l #$7A010101,d0 ; AControl 122,1,1,1
bra.b shel_getput
globl _shel_put
_shel_put:
move.l #$7B010101,d0 ; AControl 123,1,1,1
shel_getput:
; .cargs #4,bufptr.l,buflen.w
bufptr = 4
buflen = 8
lea bufptr(sp),a0 ; -> addrin
lea buflen(sp),a1 ; -> intin
jmp aes_do
; end of code